home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / andere sprachen / perl5 / perl5.002 / t / op / oct.t < prev    next >
Encoding:
Text File  |  1996-02-12  |  473 b   |  13 lines

  1. #!./perl
  2.  
  3. # $RCSfile: oct.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:08 $
  4.  
  5. print "1..6\n";
  6.  
  7. print +(oct('01234') == 01234) ? "ok" : "not ok", " 1\n";
  8. print +(oct('0x1234') == 0x1234) ? "ok" : "not ok", " 2\n";
  9. print +(hex('01234') == 0x1234) ? "ok" : "not ok", " 3\n";
  10. print +(oct('20000000000') == 020000000000) ? "ok" : "not ok", " 4\n";
  11. print +(oct('x80000000') == 0x80000000) ? "ok" : "not ok", " 5\n";
  12. print +(hex('80000000') == 0x80000000) ? "ok" : "not ok", " 6\n";
  13.